VMware Workspace One
This topic covers the steps to add agent installer in VMware Workspace One on Windows and macOS systems.
Before you begin, download the agent installer file and copy the token value.
On Windows
- Navigate to Resources >Apps > Native
- Click Add > Application File
- Upload the agent installer (.msi file)
- Click Continue
- Accept Defaults in the Details tab
- Select Deployment Options tab
- Edit the install command to include a TOKEN argument with token data
for example,msiexec /qn /i "kacecloud.msi" /TOKEN=YOUR-TOKEN-DATA - Click Save and Assign
- Assign the new application to desired devices. These are the devices that are already a part of VMware Workspace One and will be registered into KACE Cloud.
On macOS
- Navigate to Resources > Apps > Native
- Click Add >Application File
- Upload agent package
- Click Continue
- Select Full Software Management
- Upload the metadata file (created with VMware Workspace ONE Admin Assistant)
- Accept Defaults in the Details tab
- Select Scripts tab
- Add an install script
Sample macOS pre-install script- - Click Save & Assign
- Assign the new application to desired devices. These are devices that are already part of VMware Workspace One and will be registered into KACE Cloud.
#!/bin/bash
KACE_DATA_DIR="/Library/Application Support/Quest/KACECloud/data"
TOKEN_FILE="${KACE_DATA_DIR}/token"
TOKEN="YOUR-TOKEN-DATA"
mkdir -p "${KACE_DATA_DIR}"
echo "${TOKEN}" > "${TOKEN_FILE}"